-
Notifications
You must be signed in to change notification settings - Fork 3.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Upgrade the bazel-related dependencies #8078
Conversation
This patch updates all the bazel-related dependencies to their latest available versions. All tests still pass. Fixes: google#8076
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
@philsc strange, it passed the buildkite tests in this PR but since merged it is failing on the "Buildifier" step. See https://buildkite.com/bazel/flatbuffers/builds/8748#018a3461-3889-4352-a034-af4ece05cf3a. Any idea what that might be caused by and what we can do about it? |
`buildifier` was complaining as follows: #### :bazel: buildifier: found 2 lint issues in your WORKSPACE, BUILD and *.bzl files <pre><code>tests/ts/bazel_repository_test_dir/BUILD:3:1: <a href="https://github.com/bazelbuild/buildtools/blob/master/WARNINGS.md#out-of-order-load">out-of-order-load</a>: Load statement is out of its lexicographical order. ts/BUILD.bazel:2:1: <a href="https://github.com/bazelbuild/buildtools/blob/master/WARNINGS.md#out-of-order-load">out-of-order-load</a>: Load statement is out of its lexicographical order.</pre></code> This can be fixed locally like so: $ buildifier -lint fix $(git ls-files | grep -e '/BUILD.bazel$' -e '/BUILD$' -e '\<WORKSPACE$') I also took this opportunity to fix one of the filenames. I accidentally introduced these errors in google#8078.
Sorry about that. #8081 should fix it. |
`buildifier` was complaining as follows: #### :bazel: buildifier: found 2 lint issues in your WORKSPACE, BUILD and *.bzl files <pre><code>tests/ts/bazel_repository_test_dir/BUILD:3:1: <a href="https://github.com/bazelbuild/buildtools/blob/master/WARNINGS.md#out-of-order-load">out-of-order-load</a>: Load statement is out of its lexicographical order. ts/BUILD.bazel:2:1: <a href="https://github.com/bazelbuild/buildtools/blob/master/WARNINGS.md#out-of-order-load">out-of-order-load</a>: Load statement is out of its lexicographical order.</pre></code> This can be fixed locally like so: $ buildifier -lint fix $(git ls-files | grep -e '/BUILD.bazel$' -e '/BUILD$' -e '\<WORKSPACE$') I also took this opportunity to fix one of the filenames. I accidentally introduced these errors in #8078.
This patch updates all the bazel-related dependencies to their latest available versions. All tests still pass. Fixes: google#8076
`buildifier` was complaining as follows: #### :bazel: buildifier: found 2 lint issues in your WORKSPACE, BUILD and *.bzl files <pre><code>tests/ts/bazel_repository_test_dir/BUILD:3:1: <a href="https://github.com/bazelbuild/buildtools/blob/master/WARNINGS.md#out-of-order-load">out-of-order-load</a>: Load statement is out of its lexicographical order. ts/BUILD.bazel:2:1: <a href="https://github.com/bazelbuild/buildtools/blob/master/WARNINGS.md#out-of-order-load">out-of-order-load</a>: Load statement is out of its lexicographical order.</pre></code> This can be fixed locally like so: $ buildifier -lint fix $(git ls-files | grep -e '/BUILD.bazel$' -e '/BUILD$' -e '\<WORKSPACE$') I also took this opportunity to fix one of the filenames. I accidentally introduced these errors in google#8078.
This patch updates all the bazel-related dependencies to their latest available versions. All tests still pass. Fixes: google#8076
`buildifier` was complaining as follows: #### :bazel: buildifier: found 2 lint issues in your WORKSPACE, BUILD and *.bzl files <pre><code>tests/ts/bazel_repository_test_dir/BUILD:3:1: <a href="https://github.com/bazelbuild/buildtools/blob/master/WARNINGS.md#out-of-order-load">out-of-order-load</a>: Load statement is out of its lexicographical order. ts/BUILD.bazel:2:1: <a href="https://github.com/bazelbuild/buildtools/blob/master/WARNINGS.md#out-of-order-load">out-of-order-load</a>: Load statement is out of its lexicographical order.</pre></code> This can be fixed locally like so: $ buildifier -lint fix $(git ls-files | grep -e '/BUILD.bazel$' -e '/BUILD$' -e '\<WORKSPACE$') I also took this opportunity to fix one of the filenames. I accidentally introduced these errors in google#8078.
This patch updates all the bazel-related dependencies to their latest
available versions. All tests still pass.
Fixes: #8076